home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form3
- BorderStyle = 1 'Fixed Single
- Caption = "Create Disk"
- ClientHeight = 3810
- ClientLeft = 1740
- ClientTop = 2175
- ClientWidth = 3750
- Height = 4215
- Icon = SA_CREAT.FRX:0000
- Left = 1680
- LinkTopic = "Form3"
- ScaleHeight = 3810
- ScaleWidth = 3750
- Top = 1830
- Width = 3870
- Begin Version Version1
- ApplicationDir = ""
- CurrentDir = ""
- DestinationDir = ""
- DestinationFile = ""
- Filename = ""
- Height = 420
- Left = 3120
- SourceDir = ""
- SourceFile = ""
- Top = 3240
- Width = 420
- End
- Begin CommandButton Command2
- Caption = "Cancel"
- Height = 375
- Left = 2280
- TabIndex = 5
- Top = 720
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 2280
- TabIndex = 4
- Top = 240
- Width = 1215
- End
- Begin DirListBox Dir1
- Height = 1380
- Left = 240
- TabIndex = 2
- Top = 2160
- Width = 1815
- End
- Begin DriveListBox Drive1
- Height = 315
- Left = 240
- TabIndex = 0
- Top = 1440
- Width = 1815
- End
- Begin Label Label2
- Caption = "Select a drive and directory to place the setup files in. Then press OK."
- Height = 855
- Left = 240
- TabIndex = 6
- Top = 240
- Width = 1815
- End
- Begin Label Label1
- Caption = "Directory:"
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 1920
- Width = 1215
- End
- Begin Label Label4
- Caption = "Drive:"
- Height = 255
- Left = 240
- TabIndex = 1
- Top = 1200
- Width = 1215
- End
- Option Explicit
- Sub Command1_Click ()
- Dim Path As String
- Screen.MousePointer = 11
- DoEvents
- Path = Dir1.Path
- If (Left$(Path, 1) <> "\") Then Path = Path & "\"
- SaveSetup (Path & "SETUP.INF")
- Screen.MousePointer = 0
- End Sub
- Sub Command2_Click ()
- Unload Form3
- End Sub
- Sub Drive1_Change ()
- Dir1.Path = Drive1.Drive
- End Sub
-